home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (C) 1993 Robert Davis
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of Version 2, or any later version, of
- * the GNU General Public License as published by the Free Software
- * Foundation.
- */
-
- /* $Id: SubCell.h,v 1.5 1993/05/04 16:22:54 davis Exp $ */
-
- #import <appkit/SelectionCell.h>
- #import "SubObjectCategory.h" /* -setSubObject:, -subObject */
-
- @interface SubCell:SelectionCell
- {
- NXCoord ascender, descender, /* Font attributes */
- lineHeight;
- id subObject; /* Corresponding object */
- BOOL showAttachment; /* Show "attachment" symbol? */
- }
-
- + initialize;
-
- - init;
-
- - setFont:fontObj;
- - drawInside:(const NXRect *)cellFrame inView:controlView;
-
- @end
-